home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / rpc / sun3.md / rpcDelays.c < prev   
C/C++ Source or Header  |  1992-12-18  |  2KB  |  70 lines

  1. /* 
  2.  * rpcDelay.c --
  3.  *
  4.  *    Get perferred machine dependent inter-packet delays for rpcs.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/rpc/sun3.md/rpcDelays.c,v 9.0 89/09/12 15:18:51 douglis Stable $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20.  
  21. #include "sprite.h"
  22. #include "mach.h"
  23. #include "sys.h"
  24.  
  25.  
  26. /*
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * RpcGetMachineDelay --
  30.  *
  31.  *    Get preferred inter-fragment delay for input and output packets.
  32.  *
  33.  * Results:
  34.  *    None.
  35.  *
  36.  * Side effects:
  37.  *    None.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. void
  43. RpcGetMachineDelay(myDelayPtr, outputRatePtr)
  44.     unsigned short    *myDelayPtr;    /* Preferred delay in microseconds
  45.                      * between successive input packets.
  46.                      */
  47.     unsigned short    *outputRatePtr;    /* Delay in microseconds between
  48.                      * successive output packets.
  49.                      */
  50. {
  51.  
  52.      switch(Mach_GetMachineType()) {
  53.     default:
  54.     case SYS_SUN_2_120:
  55.         *myDelayPtr = 2000;
  56.         *outputRatePtr = 2000;
  57.         break;
  58.     case SYS_SUN_2_50:    /* Same as SYS_SUN_2_160 */
  59.         *myDelayPtr = 1000;
  60.         *outputRatePtr = 1000;
  61.         break;
  62.     case SYS_SUN_3_60:
  63.     case SYS_SUN_3_75:    /* Same as SYS_SUN_3_160 */
  64.         *myDelayPtr = 500;
  65.         *outputRatePtr = 500;
  66.         break;
  67.     }
  68. }
  69.  
  70.